4 tab redirect link 


<!DOCTYPE html>
<html>
<head>
    <title>Multi Download</title>
</head>
<body>
    <button onclick="multiDownload()">Download All</button>

    <script>
        function multiDownload() {
            const links = [
                "https://example.com/file1.pdf",
                "https://example.com/file2.zip",
                "https://example.com/file3.mp4",
                "https://example.com/file4.jpg"
            ];

            links.forEach(link => {
                const a = document.createElement('a');
                a.href = link;
                a.download = '';
                a.style.display = 'none';
                document.body.appendChild(a);
                a.click();
                document.body.removeChild(a);
            });
        }
    </script>
</body>
</html>

0 $type={blogger}:

Post a Comment